#!/bin/sh

#  uninstall.sh
#  AudioDriverExamples
#
#  Created by Dominic Feira on 11/25/13.
#

#!/bin/bash

# Remove the app
rm -rf "/Applications/Sound Control.app"
# Remove the launch agent
rm -f "/Library/LaunchAgents/com.staticz.soundcontrol.agent.plist"

# Kill sound control
killall -9 Sound\ Control
exit 0
